home *** CD-ROM | disk | FTP | other *** search
/ Dynamic HTML Construction Kit / Dynamic HTML Construction Kit.iso / source_code / dhtmlunl / dhtml.exe / CD Content / Chap12 / dun12_3.txt < prev    next >
Encoding:
Text File  |  1997-12-18  |  716 b   |  38 lines

  1. <HTML>
  2. <HEAD>
  3. <TITLE>drop shadows with positioning</TITLE>
  4. </HEAD>
  5. <STYLE TYPE="text/css">
  6. .myClass{
  7.     POSITION: absolute;
  8.     COLOR: red;
  9.     FONT-SIZE: 40pt;
  10.     FONT-FAMILY: sans-serif;
  11.     Z-INDEX:2;
  12.     }
  13. .container{
  14.     POSITION: absolute;
  15.     TOP: 100px;
  16.     LEFT: 100px;
  17.     }
  18. #shadow{
  19.     COLOR: #aaaaaa;
  20.     TOP: -3px;
  21.     LEFT: -3px;
  22.     Z-INDEX:1;
  23.     }
  24. </STYLE>
  25. <BODY BGCOLOR="#ffffff">
  26. Some standard text before the element
  27. <DIV CLASS="container">
  28.     <SPAN CLASS="myClass">
  29.     hello you
  30.     </SPAN>
  31.     <SPAN ID="shadow" CLASS="myClass">
  32.     hello you
  33.     </SPAN>
  34. </DIV>
  35. Some standard text after the element
  36. </BODY>
  37. </HTML>
  38.